home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / desktop / fracxtr5.zip / BAT / TEMP.BAK < prev    next >
Text File  |  1992-06-19  |  170b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. void main()
  4. {
  5.    int n;
  6.    float a=-1.176, b=1.176;
  7.  
  8.    printf("\n\n");
  9.    for (n=0; n<=5; ++n)  printf("%G\n", ((5-n)/5.0)*a + (n/5.0)*b);
  10. }